ac509a31e61d128f2da3d9a7f827ac56c6c71334,src/com/topodroid/DistoX/DistoXDBlockAdapter.java,DistoXDBlockAdapter,getView,#number#View#ViewGroup#,149
Before Change
holder.blk = null;
holder.pos = pos;
holder.tvId = (TextView) convertView.findViewById( R.id.id );
holder.tvFrom = (TextView) convertView.findViewById( R.id.from );
holder.tvTo = (TextView) convertView.findViewById( R.id.to );
holder.tvLength = (TextView) convertView.findViewById( R.id.length );
holder.tvCompass = (TextView) convertView.findViewById( R.id.compass );
holder.tvClino = (TextView) convertView.findViewById( R.id.clino );
holder.tvNote = (TextView) convertView.findViewById( R.id.note );
convertView.setTag( holder );
} else {
holder = (ViewHolder) convertView.getTag();
}
After Change
// holder.tvCompass = (TextView) convertView.findViewById( R.id.compass );
// holder.tvClino = (TextView) convertView.findViewById( R.id.clino );
// holder.tvNote = (TextView) convertView.findViewById( R.id.note );
convertView.setTag( holder );
} else {
holder = (ViewHolder) convertView.getTag();
if ( holder.blk != null ) {